home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Info-Mac 3
/
Info_Mac_1994-01.iso
/
Development
/
Source
/
LDEFs
/
Icon LDEF
/
Tester Src
/
Windows.c
< prev
next >
Wrap
Text File
|
1993-10-22
|
966b
|
46 lines
// File "Windows.c"
#include "main.h"
#include "Windows.h"
extern WindowPtr gWindow;
extern ListHandle gList;
// * **************************************************************************** * //
// * **************************************************************************** * //
void DoUpdate() {
Rect grayRect;
GrafPtr savePort;
GetPort(&savePort);
SetPort(gWindow);
BeginUpdate(gWindow);
DrawGrowIcon(gWindow);
grayRect = gWindow->portRect;
grayRect.right -= 15;
grayRect.bottom -= 15;
FillRect(&grayRect, gray);
LUpdate(gWindow->visRgn, gList);
EndUpdate(gWindow);
SetPort(savePort);
}
// * **************************************************************************** * //
// * **************************************************************************** * //
void DoActivate(short active) {
GrafPtr savePort;
GetPort(&savePort);
SetPort(gWindow);
DrawGrowIcon(gWindow);
LActivate(active, gList);
SetPort(savePort);
}